home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 03 - 1987 / 03.12 Dec 87 / c daisy printer driver / control key finder < prev    next >
Encoding:
Text File  |  1987-10-24  |  185 b   |  9 lines  |  [TEXT/MSBB]

  1. REM This program finds control codes
  2. CLS
  3. PRINT "enter your control character..."
  4. key:
  5.     key$=INKEY$
  6.     IF key$="" THEN GOTO key
  7.     PRINT "The ascii code is ";ASC(key$)
  8.     GOTO key
  9.